home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Skunkware 5
/
Skunkware 5.iso
/
src
/
Tools
/
freeWAIS-sf-1.1
/
acconfig.h
next >
Wrap
C/C++ Source or Header
|
1994-09-08
|
3KB
|
148 lines
/* -*- Mode: C -*-
* acconfig.h --
* ITIID : $ITI$ $Header $__Header$
* Author : Ulrich Pfeifer
* Created On : Thu Mar 24 09:09:48 1994
* Last Modified By: Ulrich Pfeifer
* Last Modified On: Thu Sep 8 15:34:20 1994
* Update Count : 50
* Status : Unknown, Use with caution!
*/
/*
* freeWAIS-sf Version String
*/
#define FREE_WAIS_SF_VERSION_STRING "freeWAIS-sf-1.0"
#define _DISTNAME_ "freeWAIS-sf"
#define FREE_WAIS_SF_VERSION 1.0
/*
* what is the name of the global variable containing the ctype character
* classes ?
*/
#undef CTYPEVAR
/*
* Do you have the athena widgets ?
* You need them to make the x clients
*/
#define HAVE_ATHENA
/*
* If you want to use your buldin regexp (on a SUN!),
* just delete the following line.
* If you get a compiler message complaining about 'circf' unknown
* defining SYSVREGEXP may help.
*/
#undef SYSVREGEXP
/*
* You need flex to compile with this support for 8bit chars.
* if you don't have flex or don't like 8-bit chars, just remove
* the '#define ISO'
* Set LCHARS to a string containing your additional lower case letters .
* and UCHARS to the *corresponding upper case letters
*
* If you just want to use flex, edit ir/Imakefile and set LEX = flex
*/
#undef ISO
#ifndef LCHARS
#define LCHARS "Σ÷ⁿ▀"
#endif
#ifndef UCHARS
#define UCHARS "─╓▄▀"
#endif
/*
* Do you want the compile with the -DLOCAL_SEARCH switch
*/
#undef LOCAL_SEARCH
/*
* will you have headline files greater that 64MB?
* Then set this define. You can't use old index files !!!
*/
#undef HUGE_HEADLINES
/*
* some thing that cause gcc 2.5.8 to complain
*/
#undef HAVE_ALPHASORT
#undef HAVE_SCANDIR
#undef HAVE_MEMMOVE
#undef HAVE_REMOVE
#undef HAVE_GETCWD
#undef HAVE_GETWD
/*
* use url's a document id's with doctype URL? You cannot retrieve
* these documents from the waisserver if you define this macro.
* but url's arn't retrieved usually by wais servers :-)
*/
#undef URLDOCID
/*
* some systems call inet_ntoa with pointer, some with the struct
*/
#undef INET_NTOA_WITH_POINTER
#undef INET_NTOA_WITH_STRUCT
/*
* program to decompress "*.Z" files
*/
#define UNCOMPRESSOR "zcat"
/*
* program to decompress "*.gz" files
*/
#define UNZIPPER "gzcat"
/*
* SGIs running IRIX 5 have getrnge is declared in <regexp.h>
*/
#undef HAVE_GETRNGE
/*
* Try the ANSI mode
* Not working yet
*/
#ifdef STDC_HEADERS
/* #define ANSI_LIKE */
#endif
/*
* Do not send and UDP packet to dortmund
*/
#undef DO_NOT_TELL_ABOUT_ME
/*
* Can you bcopy() do overlapping copies ?
*/
#ifndef _AUX_SOURCE /* That's bad !!! */
#undef BCOPY_OVERLAP
#endif /* _AUX_SOURCE */
/*
* Can you memcpy() do overlapping copies ?
*/
#ifndef _AUX_SOURCE /* That's bad !!! */
#undef MEMCPY_OVERLAP
#endif /* _AUX_SOURCE */
/*
* do you want to cache synonym files in shared memory
*/
#undef CACHE_SYN
/*
* what compiler are you using ?
*/
#define COMPILER_VERSION "unknown"
/*
* are you compiling on a HPUX system ?
*/
#undef _HPUX_SOURCE